home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / misc / libx11inc.lha / X11 / Xm / Screen.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  989 b   |  47 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
  3.  * ALL RIGHTS RESERVED
  4. */ 
  5. /*   $RCSfile: Screen.h,v $ $Revision: 1.13 $ $Date: 92/05/14 12:56:23 $ */
  6. /*
  7. *  (c) Copyright 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  8.  
  9. #ifndef _XmScreen_h
  10. #define _XmScreen_h
  11.  
  12. #include <Xm/Xm.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17. #ifndef XmIsScreen
  18. #define XmIsScreen(w) (XtIsSubclass(w, xmScreenClass))
  19. #endif /* XmIsScreen */
  20.  
  21. /* Class record constants */
  22.  
  23. typedef struct _XmScreenRec *XmScreen;
  24. typedef struct _XmScreenClassRec *XmScreenClass;
  25. extern     WidgetClass xmScreenClass;
  26.  
  27.  
  28. /********    Public Function Declarations    ********/
  29. #ifdef _NO_PROTO
  30.  
  31. extern Widget XmGetXmScreen() ;
  32.  
  33. #else
  34.  
  35. extern Widget XmGetXmScreen( 
  36.                         Screen *screen) ;
  37. #endif /* _NO_PROTO */
  38. /********    End Public Function Declarations    ********/
  39.  
  40.  
  41. #ifdef __cplusplus
  42. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  43. #endif
  44.  
  45. #endif /* _XmScreen_h */
  46.  
  47.